home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
gnu
/
nethack.lha
/
nethack-3.1
/
include
/
func_tab.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-04-11
|
456b
|
22 lines
/* SCCS Id: @(#)func_tab.h 3.1 92/04/03 */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* NetHack may be freely redistributed. See license for details. */
#ifndef FUNC_TAB_H
#define FUNC_TAB_H
struct func_tab {
char f_char;
int NDECL((*f_funct));
const char *f_text;
};
struct ext_func_tab {
const char *ef_txt, *ef_desc;
int NDECL((*ef_funct));
};
extern const struct ext_func_tab extcmdlist[];
#endif /* FUNC_TAB_H */